home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / GUICtrlSetCursor.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  208 b   |  12 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("put cursor over label", 300, 100)
  4. GUICtrlCreateLabel("label",125,40)
  5. GUICtrlSetCursor(-1, 4)
  6. GUISetState ()
  7.  
  8. While GUIGetMsg()<> $GUI_EVENT_CLOSE
  9. WEnd
  10. Exit
  11.  
  12.